.image-cta {
  display: block;
  width: 100%;
  padding-bottom: 90%;
  position: relative;
}
.image-cta:after {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
}
.image-cta.is-editor {
  pointer-events: none;
}
.image-cta:hover .image-cta__title.teal {
  background-color: #bae5df;
}
.image-cta:hover .image-cta__title.tan {
  background-color: #e8dbc6;
}
.image-cta:hover:after {
  opacity: 0.3;
}
.image-cta img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-cta .image-cta__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  color: var(--base);
  text-transform: uppercase;
  font-size: var(--text-md);
  font-weight: 700;
  padding: 16px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s;
}
.image-cta .image-cta__title.teal {
  background-color: rgba(186, 229, 223, 0.75);
}
.image-cta .image-cta__title.tan {
  background-color: rgba(232, 219, 198, 0.75);
}
@media (max-width: 767px) {
  .image-cta {
    padding-bottom: 100%;
  }
  .image-cta .image-cta__title {
    font-size: var(--text--sm);
    padding: 8px;
    height: 60px;
  }
}
